home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / protos / timemodule_protos.h < prev    next >
Text File  |  1996-12-15  |  798b  |  16 lines

  1.  
  2. /* timemodule.c */
  3. static object *time_time ( object *self , object *args );
  4. static object *time_clock ( object *self , object *args );
  5. static object *time_sleep ( object *self , object *args );
  6. static object *time_convert ( time_t when , struct tm *(*function )PROTO ((const time_t *)));
  7. static object *time_gmtime ( object *self , object *args );
  8. static object *time_localtime ( object *self , object *args );
  9. static int gettmarg ( object *args , struct tm *p );
  10. static object *time_strftime ( object *self , object *args );
  11. static object *time_asctime ( object *self , object *args );
  12. static object *time_ctime ( object *self , object *args );
  13. static object *time_mktime ( object *self , object *args );
  14. static void ins ( object *d , char *name , object *v );
  15. static double floattime ( void );
  16.